home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / srcuc.zip / LIMITS.H < prev    next >
Text File  |  1992-05-05  |  471b  |  19 lines

  1. /* limits.h */
  2. /* Produced by hard-params version 4.1, CWI, Amsterdam */
  3.  
  4. #define CHAR_BIT 8
  5. #define CHAR_MAX 127
  6. #define CHAR_MIN (-128)
  7. #define SCHAR_MAX 127
  8. #define SCHAR_MIN (-128)
  9. #define UCHAR_MAX 255
  10. #define SHRT_MAX 32767
  11. #define SHRT_MIN (-32768)
  12. #define INT_MAX 2147483647
  13. #define INT_MIN (-2147483648)
  14. #define LONG_MAX 2147483647
  15. #define LONG_MIN (-2147483648)
  16. #define USHRT_MAX 65535
  17. #define UINT_MAX 4294967295
  18. #define ULONG_MAX 4294967295
  19.